:root {
  --primary-color: #ed6225;
  --secondary-color: #4a6741;
  --light-bg: #f9f7f2;
  --dark-text: #333333;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #d45420;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  background-color: var(--primary-color);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.pricing-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 20px;
}

.pricing-header h3 {
  color: #fff;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.pricing-period {
  color: #777;
  font-size: 1rem;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  list-style: none;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.quality-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("https://ehsaasorganic.com/wp-content/uploads/2020/06/home12.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #ed6225;
}

@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 30px;
  }

  .pricing-card {
    margin-bottom: 30px;
  }
}

/* Interested Button */
.interest-button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  cursor: pointer;
  animation: fastZoomBlink 1.2s infinite;
}

.interest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  animation-play-state: paused;
}

.interest-button:active {
  transform: translateY(0);
}

.interest-button .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.interest-button:hover .icon {
  transform: scale(1.1);
}

.interest-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.interest-button:hover::before {
  left: 100%;
}

@keyframes fastZoomBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.button-container {
  position: relative;
  display: inline-block;
}

/* Alternative styles - uncomment to try different effects */
/*
        .interest-button {
            animation: colorBlink 1.5s infinite;
        }

        @keyframes colorBlink {
            0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
            50% { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        }
        */

.non-member {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 76% !important;
}
